home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-25 | 1.3 KB | 61 lines | [TEXT/CWIE] |
- /*
- Shutter.h
- C Header File
-
- Part of the Shutter package
- */
-
- // Local Includes
- // (none here)
-
- /*
- Here is a selection of the Unviersal Header files I use most frequently.
- Commented out ones are not required for this particular project.
- */
-
- // Universal Includes
- //#include <AppleEvents.h>
- #include <Controls.h>
- //#include <CursorCtl.h>
- #include <Devices.h>
- #include <Dialogs.h>
- //#include <Diskinit.h>
- //#include <Disks.h>
- //#include <EPPC.h>
- #include <Errors.h>
- #include <Events.h>
- #include <Files.h>
- //#include <Finder.h>
- //#include <FixMath.h>
- //#include <fp.h>
- //#include <Fonts.h>
- #include <GestaltEqu.h>
- #include <Memory.h>
- #include <Menus.h>
- //#include <Notification.h>
- #include <OSUtils.h>
- //#include <Palettes.h>
- //#include <PictUtils.h>
- //#include <PLStringFuncs.h>
- //#include <Printing.h>
- //#include <Processes.h>
- #include <QDOffScreen.h>
- #include <QuickDraw.h>
- #include <Resources.h>
- //#include <Script.h>
- #include <SegLoad.h>
- #include <ShutDown.h>
- //#include <Sound.h>
- #include <ToolUtils.h>
- #include <Types.h>
- #include <Windows.h>
-
- /*
- Define my struct here, so it doesn't clutter up my source. **BUT** you must make
- sure that this gets to every file that needs it, if you are using multiple source files.
- */
- typedef struct {
- short myPrefsShort;
- } PrefsType;
-
- // That's all folks!